Nevron Open Vision Documentation
Nevron.Nov.IO Namespace / NByteReader Class / ReadBytes Method / ReadBytes(Byte[],Int32,Int32) Method
Destination array.
Offset (in bytes) from the beginning of the destination array where writing should start.
The number of bytes to read.


In This Topic
    ReadBytes(Byte[],Int32,Int32) Method
    In This Topic
    Reads the specified number of bytes and writes them in the specified destination array, at the specified offset.
    Syntax
    'Declaration
     
    
    Public Overloads Sub ReadBytes( _
       ByVal destArray() As System.Byte, _
       ByVal destOffset As System.Integer, _
       ByVal count As System.Integer _
    ) 
    'Usage
     
    
    Dim instance As NByteReader
    Dim destArray() As System.Byte
    Dim destOffset As System.Integer
    Dim count As System.Integer
     
    instance.ReadBytes(destArray, destOffset, count)
    public void ReadBytes( 
       System.byte[] destArray,
       System.int destOffset,
       System.int count
    )

    Parameters

    destArray
    Destination array.
    destOffset
    Offset (in bytes) from the beginning of the destination array where writing should start.
    count
    The number of bytes to read.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also